home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Comms Spectacular / finger_server_0.6 / fcb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-09-08  |  446 b   |  27 lines  |  [TEXT/KAHL]

  1. /*
  2.  * format of a file control block
  3.  */
  4.  
  5. struct FCBrec_R {
  6.   long fcbFlNm;
  7.   char fcbFlags;
  8.   char fcbTypByt;
  9.   short fcbSBlk;
  10.   long fcbEOF;
  11.   long fcbPLen;
  12.   long fcbCrPs;
  13.   void *fcbVPtr;
  14.   void *fcbBfAdr;
  15.   short fcbFlPos;
  16.   long fcbClmpSize;
  17.   void *fcbBTCBPtr;
  18.   long fcbExtRec;
  19.   long fcbExtRec2;
  20.   long fcbExtRec3;
  21.   char fcbFType[4];
  22.   long fcbCatPos;
  23.   long fcbDirID;
  24.   char fcbCName[32];
  25. };
  26. typedef struct FCBrec_R FCBrec,*FCBrec_pt;
  27.